home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kompuutteri K-CD 2002 #1
/
K-CD_2002-01.iso
/
Delphi
/
INSTALL
/
program files
/
Borland
/
Delphi6
/
Demos
/
Doc
/
TextEdit
/
textedit.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-05-22
|
246 b
|
15 lines
program TextEdit;
uses
Forms,
MDIFrame in 'MDIFrame.pas' {FrameForm},
MDIEdit in 'MDIEdit.pas' {EditForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFrameForm, FrameForm);
Application.Run;
end.